home *** CD-ROM | disk | FTP | other *** search
/ Merciful 2 / Merciful - Disc 2.iso / software / m / maxonc++2.dms / maxonc++2.adf / MCPIncl.lha / stddef.h < prev    next >
C/C++ Source or Header  |  1992-02-10  |  217b  |  16 lines

  1. #ifndef _INCLUDE_STDDEF_H
  2. #define _INCLUDE_STDDEF_H
  3.  
  4. #ifndef NULL
  5. #define NULL 0
  6. #endif
  7.  
  8. #define offsetof(s,m) ((unsigned)&((s*)NULL)->m)
  9.  
  10. typedef unsigned size_t;
  11. typedef int ptrdiff_t;
  12. typedef int wchar_t;
  13.  
  14. #endif
  15.  
  16.